*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'arial';
}


.headers{
    width: 100%;
    background: red;
    text-align: center;
    margin: auto;
    padding: 100px 10px;
    color: white;
}

.headers h1{
    font-size: 35px;
    text-transform: uppercase;
    margin-top: 20px;
}

.headers h2{
    margin: 30px auto;

}

.headers a{
    color: white;
    font-size: 30px;
    text-decoration: none;  
}



.conteiner{
    width: 100%;
    height: auto;
    padding: 10px;
}


.conteiner .priceTable{
    width: 60%;
    height: auto;
    margin: auto;
    padding: 5px;
    display: flex;
}


.priceTable .service{
    width: 380px;
    height: 250px;
    margin-right: 80px;
}

.service h1{
    margin-bottom: 10px;
    font-size: 28px;
}

.service p{
    font-size: 17px;
    line-height: 1.4;
}


.priceTable .Amount{
    width: 110px;
    height: auto;
}

.Amount h1{
    margin-bottom: 10px;
    font-size: 28px;
}

.Amount p{
    font-size: 17px;
    line-height: 1.4;
}






@media (max-width: 990px) {


    .headers h1{
        margin-top: 30px;
        font-size: 30px;
    }


    .headers a{
        font-size: 22px;

    }

    

    .conteiner{
    padding: 2px;

    }
    
    .conteiner .priceTable{
    width: 100%;
    padding: 0;
    margin: 0;
}




.priceTable .service{
    width: 70%;
    height: auto;
    margin-right: 5px;
    margin-bottom: 50px;    
    padding: 0;
    
}

.service h1{
    font-size: 20px;
}

.service p{
    font-size: 15px;

}


.Amount h1{
    font-size: 20px;

}

.Amount p{
    font-size: 15px;
}

}